mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
22 lines
586 B
JSON
22 lines
586 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"target": "es5",
|
|
"moduleResolution": "node",
|
|
"lib": ["es2015", "DOM"],
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"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/scripts"]
|
|
}
|