18 lines
441 B
JSON
18 lines
441 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2017",
|
||
|
"module": "CommonJS",
|
||
|
"outDir": "./dist",
|
||
|
"rootDir": "./src",
|
||
|
"strict": false,
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"experimentalDecorators": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"./pipeline"
|
||
|
]
|
||
|
}
|