-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
34 lines (32 loc) · 914 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": {
"checkJs": false,
"lib": ["dom", "dom.iterable", "esnext","es2017"],
"noImplicitAny": false, // Remove any usage
"outDir": "dist",
"removeComments": true,
"sourceMap": true,
"typeRoots": ["./node_modules/@types"],
//"declaration": true,
"emitDecoratorMetadata": true,
"importHelpers": true,
"target": "es2015",
"skipDefaultLibCheck": true,
"baseUrl": ".",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"allowJs": true,
"experimentalDecorators":true
},
"include": ["packages", "postcss.config.js", "tailwind.config.js"],
}