-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (28 loc) · 1 KB
/
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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"lib": ["ESNext", "ES2021"], /* Specify library files to be included in the compilation. */
"outDir": "./dist",
"allowJs": true, /* Allow javascript files to be compiled. */
"noEmit": true, /* Do not emit outputs. */
"strict": true,
"strictPropertyInitialization": false,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
"baseUrl": "./",
"paths": {
"*": ["src/*"]
},
},
"include": [
"**/*.ts", "**/*.tsx", "**/*.js",
],
}