forked from taoqf/nools-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (32 loc) · 833 Bytes
/
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
{
"include": ["packages"],
"exclude": ["node_modules", "dist", "lib", "__tests__", "tests", "**/*.test*", "**/*.spec*"],
"files": [],
"compilerOptions": {
"skipLibCheck": false,
"strict": true,
"jsx": "react",
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"rootDir": "./",
"baseUrl": "./",
"paths": {
"@nools/*": ["packages/*/src"]
},
// https://github.com/RyanCavanaugh/learn-a/#tsconfigsettingsjson
"composite": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"incremental": true,
"lib": ["esnext"]
},
"references": [
{ "path": "packages/common" },
{ "path": "packages/parser" },
{ "path": "packages/nools" },
{ "path": "packages/data-structures" }
]
}