API-Explorer-II/tsconfig.json

30 lines
546 B
JSON
Raw Normal View History

2023-03-29 15:22:33 +00:00
{
"files": [],
2023-04-20 06:04:46 +00:00
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "ES6",
"outDir": "dist",
"baseUrl": "src",
"resolveJsonModule": true,
"paths": {
"*": ["node_modules/*"]
},
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2025-02-26 12:01:37 +00:00
"allowJs": true,
"types": ["vitest/globals"]
2023-04-20 06:04:46 +00:00
},
2023-03-29 15:22:33 +00:00
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.vitest.json"
}
]
}