29 lines
611 B
JSON
29 lines
611 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"moduleResolution": "bundler",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"target": "ES2022",
|
|
"module": "esnext",
|
|
"lib": ["esnext", "dom", "esnext.array"],
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"baseUrl": ".",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": [
|
|
"jest.config.ts",
|
|
"src/test-setup.ts",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts"
|
|
]
|
|
}
|