repod/tsconfig.json
Michel Roux fdee813bce
Some checks failed
repod / xml (push) Successful in 37s
repod / php (push) Successful in 54s
repod / nodejs (push) Failing after 56s
repod / release (push) Has been skipped
refactor: 🚧 introducing typescript (not working now)
2024-09-13 08:56:04 +02:00

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,
},
}