20 lines
497 B
JSON
20 lines
497 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"include": ["./src/**/*.ts", "./src/**/*.vue", "**/*.ts"],
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noImplicitAny": false,
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
},
|
|
"vueCompilerOptions": {
|
|
"target": 3.3,
|
|
},
|
|
}
|