app_template/tsconfig.json
Michel Roux 62f793e748
All checks were successful
app_template / xml (push) Successful in 11s
app_template / php (push) Successful in 1m7s
app_template / nodejs (push) Successful in 1m1s
app_template / release (push) Has been skipped
make my own changes
2024-11-10 17:08:22 +01:00

16 lines
375 B
JSON

{
"extends": "@vue/tsconfig",
"include": ["./src/**/*.ts", "./src/**/*.vue", "**/*.ts"],
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"noImplicitAny": false,
"rootDir": ".",
"strict": true,
"noEmit": true,
}
}