20 lines
525 B
JSON
20 lines
525 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "es2020",
|
|
"moduleResolution": "NodeNext",
|
|
"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"]
|
|
}
|