-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 936 Bytes
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 936 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
31
32
33
34
{
"compilerOptions": {
// Ensure that .d.ts files are created by tsc, but not .js files
"declaration": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
// Ensure that Babel can safely transpile files in the TypeScript project
"isolatedModules": true,
"strict": true,
"strictNullChecks": true,// ask Romain
"module": "ESNEXT",
"target": "ESNEXT",
"lib": [
"ES2020"
],
"noEmit": true,
"moduleResolution": "node",
"skipLibCheck": true,
"noImplicitAny": false,
"noImplicitReturns": false, // fixe Not all code paths return a value.ts(7030) ==> handleLogin()
"noEmitOnError": true,
"esModuleInterop": true,
"outDir": "./dist",
},
"baseUrl": ".",
"include": [
"src/**/*.ts",
"src/**/*.js"
],
"exclude": [
"node_modules/**/*",
"dist/**/*"
]
}