mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
23 lines
No EOL
388 B
JSON
23 lines
No EOL
388 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": [ "es2015" ],
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"sourceMap": true,
|
|
"newLine": "LF",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"incremental": true,
|
|
"strict": true,
|
|
"downlevelIteration": true
|
|
},
|
|
"filesGlob": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist/**/*"
|
|
]
|
|
} |