forked from shipshapecode/swach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (38 loc) · 1.01 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
{
"compilerOptions": {
"target": "ES2022",
"baseUrl": ".",
"module": "es6",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"experimentalDecorators": true,
"inlineSourceMap": true,
"inlineSources": true,
"moduleResolution": "node",
"noEmit": true,
"noEmitOnError": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"paths": {
"swach/tests/*": ["tests/*"],
"swach/*": ["app/*"],
"*": ["types/*"],
"@ember/destroyable": ["node_modules/ember-destroyable-polyfill"],
"@glimmer/tracking/primitives/cache": [
"node_modules/ember-cache-primitive-polyfill"
]
}
},
"glint": {
"environment": "ember-loose"
},
"include": ["app/**/*", "tests/**/*", "types/**/*"]
}