Picsur/backend/tsconfig.json

18 lines
399 B
JSON
Raw Normal View History

2022-02-21 09:46:03 +00:00
{
2022-02-24 21:56:27 +00:00
"extends": "../tsconfig.base.json",
"include": ["src/**/*.ts", "src/**/*.d.ts"],
"exclude": ["node_modules", "dist", "test", "**/*spec.ts"],
2022-02-21 09:46:03 +00:00
"compilerOptions": {
2022-02-24 21:56:27 +00:00
"target": "es2020",
2022-02-21 21:17:44 +00:00
"module": "es2020",
2022-02-24 21:56:27 +00:00
"outDir": "./dist",
2022-02-21 09:46:03 +00:00
"declaration": true,
"sourceMap": true,
2022-02-24 21:56:27 +00:00
"emitDecoratorMetadata": true
},
"ts-node": {
"experimentalSpecifierResolution": "node"
2022-02-21 09:46:03 +00:00
}
}