mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
23 lines
694 B
JSON
23 lines
694 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"]
|
|
}
|