smartacme/tsconfig.json

17 lines
367 B
JSON
Raw Normal View History

2019-01-08 20:45:35 +01:00
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2022-09-27 15:40:55 +02:00
"useDefineForClassFields": false,
"target": "ES2022",
2024-04-01 21:33:37 +02:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2023-07-21 18:49:18 +02:00
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"baseUrl": ".",
"paths": {}
2024-04-01 21:33:37 +02:00
},
"exclude": [
"dist_*/**/*.d.ts"
]
}