38 lines
980 B
JSON
38 lines
980 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "ESNext",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2023"],
|
|
"jsx": "react-jsx",
|
|
"noEmit": true,
|
|
"sourceMap": true,
|
|
"moduleResolution": "Bundler",
|
|
"moduleDetection": "force",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"useDefineForClassFields": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"downlevelIteration": true,
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./src/*"],
|
|
"@pkgs/*": ["./pkgs/*"]
|
|
}
|
|
},
|
|
"include": ["./src/**/*"],
|
|
"exclude": ["node_modules", "dist", "coverage"]
|
|
}
|