-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 1005 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": {
"ignoreDeprecations": "5.0",
"module": "CommonJS",
"target": "es2015",
"lib": ["es5", "es6", "es7", "es2021", "dom"],
"sourceMap": false,
"declaration": true,
"allowJs": false,
"jsx": "react",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"noImplicitAny": false,
"strictNullChecks": false,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"esModuleInterop": true,
},
"compileOnSave": false,
"buildOnSave": false,
"typeRoots": ["node_modules/@types", "./typings.d.ts"],
"exclude": ["node_modules","**/*.stories.tsx","**/*.test.tsx"]
}