19 lines
420 B
JSON
19 lines
420 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "es6",
|
||
|
|
"module": "CommonJS",
|
||
|
|
"outDir": "./lib",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"strict": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"noImplicitAny": false,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"moduleResolution": "node"
|
||
|
|
},
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"**/*.test.ts"
|
||
|
|
]
|
||
|
|
}
|