23 lines
473 B
JSON
23 lines
473 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "es2020",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./built/",
|
|
"removeComments": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"esModuleInterop": true,
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"built",
|
|
]
|
|
}
|