forked from glimmerjs/glimmer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (42 loc) · 1.21 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
43
44
45
46
{
"compilerOptions": {
// Compilation Configuration
"target": "es2017",
"inlineSources": true,
"inlineSourceMap": true,
"declaration": true,
"outDir": "dist",
"baseUrl": "packages",
"rootDir": "packages",
"importHelpers": true,
// Environment Configuration
"experimentalDecorators": true,
"moduleResolution": "node",
// Enhance Strictness
"noUnusedLocals": true,
"noImplicitThis": true,
// Enabling these breaks @glimmer/application, fix and reenable this
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": false,
"noUnusedParameters": false,
"strictNullChecks": false,
"allowUnreachableCode": false,
"noImplicitReturns": false,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"newLine": "LF",
"noEmit": true,
"paths": {
"*": ["*/src", "*"]
}
},
"include": [
// Because of the circular dependency, we have to avoid specifying globs
// that include node_modules.
"packages/@glimmer/*/src/**/*.ts",
"packages/@glimmer/*/index.ts",
"packages/@glimmer/*/test/**/*.ts",
"packages/rollup-plugin-typescript2/src/**/*.ts"
],
"exclude": ["node_modules", "packages/@glimmer/blueprint"]
}