20 lines
341 B
JSON
20 lines
341 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"pretty": true,
|
|
"target": "es2019",
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["./**/*"],
|
|
"exclude": [
|
|
"node_modules/**/*",
|
|
"test"
|
|
]
|
|
}
|