19 lines
430 B
JSON
19 lines
430 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"esModuleInterop": true,
|
||
|
"target": "ES2020",
|
||
|
"noImplicitAny": true,
|
||
|
"moduleResolution": "node",
|
||
|
"sourceMap": true,
|
||
|
"removeComments" : false,
|
||
|
"baseUrl" : "dist",
|
||
|
"outDir": "./dist/",
|
||
|
"rootDir" : "./src/",
|
||
|
"paths" : {
|
||
|
}
|
||
|
},
|
||
|
"exclude" : [
|
||
|
"./dist"
|
||
|
]
|
||
|
}
|