API-Explorer-II/tsconfig.json
2023-04-20 14:04:46 +08:00

29 lines
513 B
JSON

{
"files": [],
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "ES6",
"outDir": "dist",
"baseUrl": "src",
"resolveJsonModule": true,
"paths": {
"*": ["node_modules/*"]
},
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowJs": true
},
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.vitest.json"
}
]
}