Files
Picsur/shared/tsconfig.json

15 lines
278 B
JSON
Raw Normal View History

2022-02-24 22:56:27 +01:00
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
2023-06-09 10:35:40 +02:00
"target": "ES2022",
2024-08-04 16:01:08 +02:00
"module": "NodeNext",
"lib": ["ES2022", "DOM"],
2022-02-28 23:18:07 +01:00
2022-02-24 22:56:27 +01:00
"outDir": "./dist",
"declaration": true,
"emitDecoratorMetadata": true,
"sourceMap": true
},
2022-03-24 21:10:06 +01:00
"include": ["src"]
2022-02-24 22:56:27 +01:00
}