* great typescript module import refactor * refactor metamigo-cli so it is the entrypoint for the db, api, and worker
24 lines
612 B
JSON
24 lines
612 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"target": "es2020",
|
|
"lib": ["es2020"],
|
|
"module": "ES2020",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"inlineSourceMap": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"traceResolution": false,
|
|
"listEmittedFiles": false,
|
|
"listFiles": false,
|
|
"pretty": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"types": ["node", "jest"]
|
|
}
|
|
}
|