-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathClarigen.toml
More file actions
30 lines (24 loc) · 816 Bytes
/
Clarigen.toml
File metadata and controls
30 lines (24 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Set to your project's Clarinet config file
clarinet = "./dungeon-master/Clarinet.toml"
# Set where you'd like TypeScript types output.
# Comment or remove section to skip TypeScript types
[types]
# `output` should be a path to a single file
output = "lib/clarigen/types.ts"
# You can also specify multiple output paths:
# outputs = [
# "src/clarigen-types.ts",
# "test/clarigen-types.ts"
# ]
# `types.after` - script to run after TypeScript types are generated.
# examples:
# after = "npm run prettier -w ./src/clarigen-types.ts"
# after = "echo 'yay'"
# Set where you'd like generated contract docs
# Generate docs by running `clarigen docs`
[docs]
# `output` should be a folder
output = "docs"
# `docs.after` - script to run after docs are generated.
# examples:
# after = "npm run prettier -w ./docs"