ts-ci/tsconfig.json

23 lines
619 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",
2021-02-20 11:15:49 +01:00
"lib": ["es2015", "DOM"],
"esModuleInterop": true,
2020-05-27 22:02:44 +02:00
"declaration": true,
2023-02-27 16:07:38 +01:00
// Do not change or the linkinkg cript 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
},
2023-03-21 15:30:41 +01:00
"include": ["src"]
2020-05-27 22:02:44 +02:00
}