-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtsconfig.json
32 lines (32 loc) · 947 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
{
"extends": "./paths.json",
"compilerOptions": {
"incremental": true,
"target": "es2021",
"module": "commonjs",
"lib": ["dom", "es2021"],
"declaration": true,
"declarationMap": true,
// https://www.typescriptlang.org/tsconfig#jsx
"jsx": "react-jsx",
"strict": true,
"pretty": true,
"sourceMap": true,
// "baseUrl": "./src",
"noUnusedLocals": false,
"noUnusedParameters": true,
"noImplicitReturns": true,
"useUnknownInCatchVariables": false,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"resolveJsonModule": true,
"allowJs": true,
"typeRoots": ["@types", "node_modules/@types"],
"outDir": "release/app/dist"
},
"exclude": ["test", "release/build", "release/app/dist", ".erb/dll"]
}