mirror of
https://github.com/linuxserver/budge.git
synced 2026-01-15 01:21:43 +08:00
29 lines
542 B
JSON
29 lines
542 B
JSON
{
|
|
"compilerOptions": {
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "build",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*"
|
|
]
|
|
},
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"jest.config.js",
|
|
"test",
|
|
"babel.config.js",
|
|
"ormconfig.ts"
|
|
]
|
|
}
|