forked from Coreoz/create-plume-react-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (33 loc) · 800 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
{
"compilerOptions": {
"outDir": "build",
"target": "ESNext",
"module": "commonjs",
"lib": [
"ES2020",
],
"moduleResolution": "node",
"importHelpers": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react",
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"plugins": [
{"transform": "./di-transformer-adapter.ts" },
{"transform": "ts-transformer-classname" },
]
},
"include": [
"src",
]
}