2024-09-13 08:56:04 +02:00
|
|
|
{
|
|
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.vue", "**/*.ts"],
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2024-10-18 15:46:40 +02:00
|
|
|
"target": "ES2022",
|
2024-09-13 08:56:04 +02:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"rootDir": ".",
|
|
|
|
"strict": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"allowImportingTsExtensions": true,
|
2024-10-18 15:46:40 +02:00
|
|
|
}
|
2024-09-13 08:56:04 +02:00
|
|
|
}
|