You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
887 B
31 lines
887 B
{
|
|
"compilerOptions": {
|
|
"target": "ES2020", // Latest ECMAScript features that are widely supported by modern browsers
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext", // Use ES modules
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve", // Preserves JSX to be transformed by Babel or another transpiler
|
|
"strict": true, // Enable all strict type checking options
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"baseUrl": ".",
|
|
"experimentalDecorators": true,
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|
|
|