mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-kolloquium.git
synced 2025-10-28 08:45:33 +00:00
24 lines
678 B
JSON
24 lines
678 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"lib": ["es2017", "dom", "dom.iterable"],
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./types",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"useDefineForClassFields": false,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*.ts", "main.ts"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|