-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtsconfig.json
30 lines (30 loc) · 981 Bytes
/
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
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"jsx": "react",
"lib": ["es6", "ES2015", "dom", "dom.iterable", "scripthost"],
"alwaysStrict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noEmitHelpers": true,
"importHelpers": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"outDir": "dist",
"baseUrl": "./front/src",
"strict": true,
"moduleResolution": "node",
"charset": "utf8"
},
"include": ["front/typings/**/*.d.ts", "front/src/**/*.ts", "front/src/**/*.tsx", "node_modules/@types/**/*.d.ts"],
"exclude": ["front/dist", "front/bundle", "node_modules/"],
"typeAcquisition": {
"enable": true
}
}