1
0

feat: improve ts setup

This commit is contained in:
Dominik Pschenitschni
2022-04-10 02:40:15 +02:00
committed by Gitea
parent 513a51fb73
commit c6aac15d24
14 changed files with 195 additions and 144 deletions

View File

@ -1,43 +1,14 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"sourceMap": true,
"baseUrl": ".",
"strictNullChecks": true,
"isolatedModules": true,
"types": [
"vite/client"
],
"paths": {
"@/*": [
"src/*"
],
"*": [
"types/*.d.ts"
]
"files": [],
"references": [
{
"path": "./tsconfig.vite-config.json"
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.vitest.json"
}
]
}