Merged tsconfig to one file
This commit is contained in:
parent
9b4ad492fe
commit
9f7b74712b
3 changed files with 40 additions and 52 deletions
|
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"extends": "./tsconfig.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"outDir": "../../dist/out-tsc",
|
|
||||||
"types": ["vite/client"]
|
|
||||||
},
|
|
||||||
"exclude": [
|
|
||||||
"src/**/*.spec.ts",
|
|
||||||
"src/**/*.test.ts",
|
|
||||||
"src/**/*.spec.vue",
|
|
||||||
"src/**/*.test.vue"
|
|
||||||
],
|
|
||||||
"include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.vue"]
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
{
|
|
||||||
"compileOnSave": false,
|
|
||||||
"compilerOptions": {
|
|
||||||
"rootDir": ".",
|
|
||||||
"sourceMap": true,
|
|
||||||
"declaration": false,
|
|
||||||
"moduleResolution": "node",
|
|
||||||
"emitDecoratorMetadata": true,
|
|
||||||
"experimentalDecorators": true,
|
|
||||||
"importHelpers": true,
|
|
||||||
"target": "es2015",
|
|
||||||
"module": "esnext",
|
|
||||||
"lib": ["es2020", "dom"],
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"skipDefaultLibCheck": true,
|
|
||||||
"baseUrl": ".",
|
|
||||||
"paths": {}
|
|
||||||
},
|
|
||||||
"exclude": ["node_modules", "tmp"]
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +1,42 @@
|
||||||
{
|
{
|
||||||
|
"compileOnSave": false,
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"allowJs": true,
|
"rootDir": ".",
|
||||||
|
"sourceMap": true,
|
||||||
|
"declaration": false,
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"module": "esnext",
|
||||||
|
"target": "es2015",
|
||||||
|
"jsx": "preserve",
|
||||||
|
"jsxImportSource": "vue",
|
||||||
|
"emitDecoratorMetadata": true,
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"importHelpers": true,
|
||||||
"esModuleInterop": false,
|
"esModuleInterop": false,
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"jsx": "preserve",
|
"resolveJsonModule": true,
|
||||||
"jsxImportSource": "vue",
|
"allowJs": true,
|
||||||
"moduleResolution": "node",
|
"skipLibCheck": true,
|
||||||
"resolveJsonModule": true
|
"skipDefaultLibCheck": true,
|
||||||
|
"types": ["vite/client"],
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {},
|
||||||
|
"outDir": "../../dist/out-tsc",
|
||||||
|
"lib": ["es2020", "dom"]
|
||||||
},
|
},
|
||||||
"files": [],
|
"include": [
|
||||||
"include": [],
|
"src/**/*.js",
|
||||||
"references": [
|
"src/**/*.jsx",
|
||||||
{
|
"src/**/*.ts",
|
||||||
"path": "./tsconfig.app.json"
|
"src/**/*.vue"
|
||||||
}
|
|
||||||
],
|
],
|
||||||
"extends": "../tsconfig.base.json"
|
"exclude": [
|
||||||
|
"node_modules",
|
||||||
|
"tmp",
|
||||||
|
"src/**/*.spec.ts",
|
||||||
|
"src/**/*.test.ts",
|
||||||
|
"src/**/*.spec.vue",
|
||||||
|
"src/**/*.test.vue"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue