mirror of
https://github.com/sasjs/lint.git
synced 2025-12-10 09:34:34 +00:00
27 lines
486 B
JSON
27 lines
486 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"ES2018",
|
|
"DOM",
|
|
"ES2019.String"
|
|
],
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"downlevelIteration": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"outDir": "./build",
|
|
"strict": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts",
|
|
"**/example.ts"
|
|
]
|
|
}
|