mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-28 20:47:49 +01:00
23 lines
432 B
JSON
23 lines
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"ES2023",
|
|
"dom"
|
|
],
|
|
"jsx": "react-jsx",
|
|
"target": "es2015",
|
|
"moduleResolution": "Node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx"
|
|
]
|
|
}
|