Clean up tsconfig
This commit is contained in:
parent
9180b46910
commit
9ff029540f
1 changed files with 22 additions and 24 deletions
|
|
@ -1,27 +1,25 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"baseUrl": "./src",
|
"allowJs": true,
|
||||||
"target": "es6",
|
"allowSyntheticDefaultImports": true,
|
||||||
"lib": [
|
"baseUrl": "./src",
|
||||||
"dom",
|
"esModuleInterop": true,
|
||||||
"dom.iterable",
|
"forceConsistentCasingInFileNames": true,
|
||||||
"esnext"
|
"incremental": true,
|
||||||
],
|
"isolatedModules": true,
|
||||||
"paths": {
|
"jsx": "preserve",
|
||||||
"~*": ["./*"]
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||||||
},
|
"module": "esnext",
|
||||||
"allowJs": true,
|
"moduleResolution": "node",
|
||||||
"skipLibCheck": true,
|
"noEmit": true,
|
||||||
"esModuleInterop": true,
|
"paths": {
|
||||||
"allowSyntheticDefaultImports": true,
|
"~*": ["./*"]
|
||||||
"strict": true,
|
|
||||||
"forceConsistentCasingInFileNames": true,
|
|
||||||
"module": "esnext",
|
|
||||||
"moduleResolution": "node",
|
|
||||||
"resolveJsonModule": true,
|
|
||||||
"isolatedModules": true,
|
|
||||||
"noEmit": true,
|
|
||||||
"jsx": "react"
|
|
||||||
},
|
},
|
||||||
"include": ["src/**/*"]
|
"resolveJsonModule": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
|
"strict": true,
|
||||||
|
"target": "es6"
|
||||||
|
},
|
||||||
|
"include": ["src/**/*.tsx"],
|
||||||
|
"exclude": ["node_modules", ".vscode"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue