ts-ci/tsconfig.json

26 lines
713 B
JSON
Raw Normal View History

2020-05-14 01:44:07 +02:00
{
2020-05-27 22:02:44 +02:00
"compilerOptions": {
2021-02-20 11:15:49 +01:00
"module": "CommonJS",
2020-05-27 22:02:44 +02:00
"target": "es5",
2023-02-18 02:25:50 +01:00
"moduleResolution": "node",
"lib": ["es2015","DOM","ES2019.Object"],
2021-02-20 11:15:49 +01:00
"esModuleInterop": true,
2020-05-27 22:02:44 +02:00
"declaration": true,
// Do not change or the linking script will stop working
2020-05-27 22:02:44 +02:00
"outDir": "./dist",
"sourceMap": true,
"newLine": "LF",
"noUnusedLocals": true,
"noUnusedParameters": true,
"incremental": true,
"strict": true,
2021-02-20 11:15:49 +01:00
"downlevelIteration": true,
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true
2020-05-27 22:02:44 +02:00
},
"include": ["src"],
"exclude": [
"src/**/*.deno.ts",
"src/**/*.deno.tsx"
]
}