forked from INTO-CPS-Association/into-cps-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
25 lines (25 loc) · 908 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
{
"compilerOptions": {
"outDir": "./dist",
"target": "es6",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"removeComments": true, //remove comments from build
"noImplicitReturns": true, //raise error on implicit returns
"noUnusedLocals": true, //raise error on unused locals
"noUnusedParameters": false, //raise no error on unused parameters
"noImplicitAny": true, //raise error on any type
"allowSyntheticDefaultImports": true, //allow default imports from modules with no default export
"sourceMap": true, //generate .map files
"jsx": "react", //use react
"types": [
"react",
"node",
],
"strictNullChecks": true, //enable strict null checks
"resolveJsonModule": true //allow to import JSON files directly
},
"include": ["src/**/*.ts", "src/**/*.tsx", "types/**/*.d.ts"],
}