-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 771 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 771 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
{
"include": ["./**/*.ts", "./**/*.js"],
"compilerOptions": {
"noImplicitAny": true,
"target": "es5",
"outDir": "dist",
"downlevelIteration": true,
"resolveJsonModule": false,
"allowSyntheticDefaultImports": true,
"moduleResolution": "Node",
"sourceMap": false,
"alwaysStrict": true,
"strict": true,
"strictBindCallApply": true,
"strictPropertyInitialization": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noStrictGenericChecks": false,
"allowJs": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"exclude": ["./test/", "./node_modules/", "./dist/", "./resources/"],
"typeRoots": ["./contracts", "./node_modules/@types"]
}