mirror of
https://github.com/usatiuk/y.git
synced 2025-10-28 18:37:47 +01:00
22 lines
397 B
JSON
22 lines
397 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"ES2023",
|
|
"dom"
|
|
],
|
|
"jsx": "react-jsx",
|
|
"target": "es5",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx"
|
|
]
|
|
}
|