ts-ci/tsconfig.json
2023-05-21 08:04:44 +02:00

26 lines
No EOL
713 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"target": "es5",
"moduleResolution": "node",
"lib": ["es2015","DOM","ES2019.Object"],
"esModuleInterop": true,
"declaration": true,
// Do not change or the linking script will stop working
"outDir": "./dist",
"sourceMap": true,
"newLine": "LF",
"noUnusedLocals": true,
"noUnusedParameters": true,
"incremental": true,
"strict": true,
"downlevelIteration": true,
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"exclude": [
"src/**/*.deno.ts",
"src/**/*.deno.tsx"
]
}