generated from hashenoki/node-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 809 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 809 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
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["dom", "es6", "es2017", "esnext.asynciterable"],
"sourceMap": true,
"skipLibCheck": true,
"outDir": "./build",
"moduleResolution": "node",
"removeComments": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"typeRoots": ["./node_modules/@types", "./src/typings"],
"noImplicitReturns": true,
"baseUrl": ".",
"noFallthroughCasesInSwitch": true,
"paths": {
"~/*": ["./src/*"]
}
},
"include": ["app-env.d.ts", "./src/**/*.tsx", "./src/**/*.ts", ".src/__tests__/**/*"],
"exclude": ["node_modules", "./src/artifacts/**/*.ts", "test/**/*.ts", ]
}