22 lines
398 B
JSON
22 lines
398 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"outDir": "./built/",
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"esModuleInterop": true,
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"test/**/*",
|
|
]
|
|
}
|