25 lines
646 B
JSON
25 lines
646 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"include": ["./apps/**/*.ts", "./apps/**/*.vue", "./core/**/*.ts", "./core/**/*.vue", "./*.d.ts"],
|
|
"exclude": ["./**/*.cy.ts"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "ESNext"],
|
|
"outDir": "./dist/",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"rewriteRelativeImportExtensions": true,
|
|
// Allow ts to import js files
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": false,
|
|
"noImplicitAny": false,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
},
|
|
"vueCompilerOptions": {
|
|
"target": 3.6
|
|
},
|
|
}
|