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