repod/tsconfig.json
Michel Roux f0a2d199f9
All checks were successful
repod / xml (push) Successful in 14s
repod / php (push) Successful in 51s
repod / nodejs (push) Successful in 1m20s
repod / release (push) Has been skipped
refactor: 🔨 update tsconfig and package with latest app_template
2024-11-08 23:25:47 +01:00

16 lines
403 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,
}
}