-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 715 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 715 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
{
"compilerOptions": {
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"target": "es2016",
"sourceMap": true,
"module": "commonjs",
"moduleResolution": "node",
"allowJs": true,
"typeRoots": ["typings/index.d.ts"],
"types": ["node", "mocha", "webpack", "webpack-sources"]
},
"presets": [
"env",
{
"modules": false
}
],
"files": [
"typings/index.d.ts",
"typings/webpack-extension-reloader.d.ts"
],
"include": ["client/**/*", "src/**/*", "specs/**/*", "typings/*.d.ts"],
"exclude": ["node_modules", "**/*.spec.ts", "**/*.raw.ts"],
"extensions": {
".ts": "TS",
".js": "JS"
}
}