forked from api3dao/airseeker-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (31 loc) · 1.14 KB
/
tsconfig.json
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
{
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"lib": ["es6"],
"module": "commonjs",
"esModuleInterop": true,
"moduleResolution": "node",
"sourceMap": true,
"strict": true,
"target": "es5",
"skipLibCheck": true,
"composite": true,
"noFallthroughCasesInSwitch": true,
// Disabled because they are too restrictive
"exactOptionalPropertyTypes": false,
"noUncheckedIndexedAccess": false,
"noImplicitReturns": false,
// Disabled because they are covered by Eslint rules
"noUnusedLocals": false,
"noUnusedParameters": false,
// Disabled because prefer the property syntax
"noPropertyAccessFromIndexSignature": false
},
// See: https://www.typescriptlang.org/docs/handbook/project-references.html#overall-structure
//
// Another good practice is to have a “solution” tsconfig.json file that simply has references to all of your leaf-node
// projects and sets files to an empty array (otherwise the solution file will cause double compilation of files)
"files": [],
"references": [{ "path": "./src" }, { "path": "./test" }, { "path": "./scripts" }]
}