forked from alexlafroscia/ember-react-components
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (32 loc) · 885 Bytes
/
tsconfig.json
File metadata and controls
34 lines (32 loc) · 885 Bytes
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": {
"target": "es2018",
"moduleResolution": "node",
"module": "es6",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"experimentalDecorators": true,
"inlineSources": true,
"inlineSourceMap": true,
"noEmit": true,
"noEmitOnError": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"baseUrl": ".",
"paths": {
"dummy/tests/*": ["tests/*"],
"dummy/*": ["tests/dummy/app/*", "app/*"],
"ember-react-components": ["addon"],
"ember-react-components/*": ["addon/*"],
"*": ["types/*"]
}
},
"include": ["app", "addon", "tests", "types"]
}