-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
40 lines (39 loc) · 1.06 KB
/
tsconfig.json
File metadata and controls
40 lines (39 loc) · 1.06 KB
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
31
32
33
34
35
36
37
38
39
40
{
"compilerOptions": {
"rootDir": ".",
"outDir": "dest",
"tsBuildInfoFile": ".tsbuildinfo",
"target": "es2020",
"lib": ["esnext", "dom", "es2017.object"],
"allowJs": true,
"jsx": "react-jsx",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"downlevelIteration": true,
"inlineSourceMap": true,
"declarationMap": true,
"importHelpers": true,
"resolveJsonModule": true,
"composite": true,
"skipLibCheck": true
},
"include": [
"src",
"scripts/**/*",
"src/**/*.json",
"src/*.json",
"src/artifacts/*",
"target/**/*",
"packages/token/target/token_contract-Token.json",
"packages/factory/target/cloakfinance_factory-FactoryV3.json",
"packages/router/target/cloakfinance_factory-RouterV3.json",
"packages/token/src/artifacts/Token.ts",
"packages/factory/src/artifacts/FactoryV3.ts",
"packages/router/src/artifacts/RouterV3.ts",
"packages/**/*"
]
}