-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
tsconfig.json
39 lines (39 loc) · 1.04 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
35
36
37
38
39
{
"include": ["src/**/*"],
"compilerOptions": {
"lib": ["DOM", "ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"strict": true,
"pretty": true,
"exactOptionalPropertyTypes": false,
"downlevelIteration": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"emitDeclarationOnly": true,
// Enable faster builds
// but causes us to not rebuild properly
"composite": true,
"incremental": true,
"rootDir": "src",
"declaration": true,
"declarationMap": true,
"declarationDir": "unstable-preview-types",
"inlineSourceMap": true,
"inlineSources": true,
"types": ["ember-source/types"],
"paths": {
"@warp-drive/build-config": ["../build-config/unstable-preview-types"],
"@warp-drive/build-config/*": ["../build-config/unstable-preview-types/*"]
}
},
"references": [
{
"path": "../build-config"
}
]
}