37 lines
868 B
JSON
37 lines
868 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": false,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
|
|
/* Linting */
|
|
// "strict": true,
|
|
// "noUnusedLocals": false,
|
|
// "noUnusedParameters": false,
|
|
// "erasableSyntaxOnly": false,
|
|
// "noFallthroughCasesInSwitch": true,
|
|
// "noUncheckedSideEffectImports": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|