2024-05-17 01:22:07 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2020",
|
|
|
|
"lib": ["ESNext"],
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"moduleDetection": "force",
|
|
|
|
"isolatedModules": true,
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
2024-06-02 00:34:25 +00:00
|
|
|
// NOTE: these are deprecated
|
2024-05-23 23:19:38 +00:00
|
|
|
// "experimentalDecorators": true,
|
|
|
|
// "emitDecoratorMetadata": true,
|
2024-05-21 13:52:06 +00:00
|
|
|
|
2024-05-17 01:22:07 +00:00
|
|
|
"strict": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
|
|
|
"module": "NodeNext",
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"outDir": "dist",
|
|
|
|
"sourceMap": true
|
|
|
|
},
|
2024-06-02 22:30:39 +00:00
|
|
|
"include": ["src"],
|
|
|
|
"ts-node": {
|
|
|
|
"transpileOnly": true
|
|
|
|
}
|
2024-05-17 01:22:07 +00:00
|
|
|
}
|