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",
|
2023-05-29 17:05:49 +02:00
|
|
|
"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,
|
2023-05-21 08:04:44 +02:00
|
|
|
// 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",
|
2023-05-29 17:11:20 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"skipLibCheck": true
|
2020-05-27 22:02:44 +02:00
|
|
|
},
|
2023-05-21 08:04:44 +02:00
|
|
|
"include": ["src"],
|
2023-05-29 17:05:49 +02:00
|
|
|
"exclude": ["src/**/*.deno.ts", "src/**/*.deno.tsx"]
|
|
|
|
|
}
|