-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 971 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
31
32
33
34
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist",
"target": "es2021",
"module": "esnext",
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noUnusedLocals": false,
"noImplicitAny": true,
"alwaysStrict": true,
"strict": true,
"downlevelIteration": true,
"importHelpers": false,
"noImplicitThis": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"suppressImplicitAnyIndexErrors": false,
"newLine": "LF",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"removeComments": false,
"lib": ["esnext", "dom", "DOM.Iterable"],
"jsx": "react-jsx",
"forceConsistentCasingInFileNames": true,
"incremental": true
},
"include": ["./src/**/*.ts", "./src/**/*.tsx"],
"exclude": ["node_modules", "dist", ".vscode", ".idea", ".git"]
}