smartfile/tsconfig.json

15 lines
296 B
JSON
Raw Permalink Normal View History

2020-10-05 16:20:57 +00:00
{
"compilerOptions": {
"experimentalDecorators": true,
2023-06-23 16:39:01 +00:00
"useDefineForClassFields": false,
"target": "ES2022",
2024-04-01 19:35:01 +00:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2020-10-05 16:20:57 +00:00
"esModuleInterop": true,
2024-04-01 19:35:01 +00:00
"verbatimModuleSyntax": true
},
"exclude": [
"dist_*/**/*.d.ts"
]
2023-06-23 16:39:01 +00:00
}