mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-02 04:56:07 +00:00
29 lines
691 B
JSON
29 lines
691 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"target": "ES2021",
|
|
"lib": ["ESNext", "WebWorker"],
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"preserveConstEnums": true,
|
|
|
|
/* Type Checking */
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["**/node_modules", "**/dist"]
|
|
}
|