Files
pikasTech-HWLAB/web/hwlab-cloud-web/tsconfig.json
T

45 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"allowJs": false,
"noEmit": true,
"allowImportingTsExtensions": true,
"isolatedModules": true,
"types": ["bun-types", "node", "vite/client"],
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"useUnknownInCatchVariables": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true
},
"include": [
"src/**/*.ts",
"src/**/*.vue",
"scripts/**/*.ts",
"tests/**/*.ts",
"playwright.workbench.config.ts"
],
"exclude": [
"node_modules",
"dist"
]
}