forked from emberjs/data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (39 loc) · 1.4 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
40
41
42
{
"include": ["src/**/*", "../../@types/**/*"],
"baseUrl": ".",
"compilerOptions": {
"lib": ["DOM", "ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"noEmit": false,
"experimentalDecorators": true,
// Enable faster builds
// but causes us to not rebuild properly
"composite": true,
"incremental": true,
"rootDir": "src",
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"declarationDir": "unstable-preview-types",
"inlineSourceMap": true,
"inlineSources": true,
"types": ["ember-source/types"],
"paths": {
"@ember-data/deprecations": ["../private-build-infra/virtual-packages/deprecations.d.ts"],
"@ember-data/packages": ["../private-build-infra/virtual-packages/packages.d.ts"],
"@ember-data/canary-features": ["../private-build-infra/virtual-packages/canary-features.d.ts"],
"@ember-data/debugging": ["../private-build-infra/virtual-packages/debugging.d.ts"],
"@ember-data/env": ["../private-build-infra/virtual-packages/env.d.ts"]
}
},
"references": [{ "path": "../request" }, { "path": "../tracking" }, { "path": "../core-types" }]
}