Files
smarthash/tsconfig.json
T

16 lines
323 B
JSON
Raw Normal View History

2023-01-09 16:38:09 +01:00
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
2024-04-01 21:35:20 +02:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"noImplicitAny": true
2024-04-01 21:35:20 +02:00
},
"exclude": [
"dist_*/**/*.d.ts"
]
2023-01-09 16:38:09 +01:00
}