level-up/tsconfig.json
Moritz Ruth 88f0632194
All checks were successful
Build / build (push) Successful in 1m14s
Update dependencies, containerize, add build workflow
2025-03-03 00:35:21 +01:00

31 lines
707 B
JSON

{
"compilerOptions": {
"declaration": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"lib": ["esnext", "dom"],
"module": "esnext",
"moduleResolution": "bundler",
"allowJs": true,
"resolveJsonModule": true,
"importsNotUsedAsValues": "error",
"isolatedModules": true,
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"stripInternal": true,
"target": "esnext",
"types": [
"vite/client",
"unplugin-icons/types/vue",
"vite-plugin-pages/client"
]
},
"include": [
"backend/**/*.ts",
"shared/**/*.ts",
"frontend/**/*.ts",
"frontend/**/*.vue"
]
}