21 lines
489 B
JSON
21 lines
489 B
JSON
{
|
|
"extends": "@tsconfig/node14/tsconfig.json",
|
|
"compilerOptions": {
|
|
"preserveConstEnums": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"outDir": "dist",
|
|
"esModuleInterop": true,
|
|
"target": "ES2020",
|
|
"module": "ES2020",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ES2020"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "**/*.test.ts"],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": true
|
|
}
|
|
}
|