34 lines
847 B
JSON
34 lines
847 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "Node",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
|
|
/* Linting */
|
|
"strict": false,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"downlevelIteration": true,
|
|
|
|
"paths": {
|
|
"components/*": ["./src/components/*"],
|
|
"hooks/*": ["./src/hooks/*"],
|
|
"scripts/*": ["./src/scripts/*"],
|
|
"types/*": ["./src/types/*"],
|
|
"utils/*": ["./src/utils/*"]
|
|
}
|
|
},
|
|
"include": ["./src/**/*"]
|
|
}
|