Core/tsconfig.json

29 lines
516 B
JSON
Raw Permalink Normal View History

2024-06-08 23:52:26 +02:00
{
"ts-node": {
"compilerOptions": {
"module": "ESNext",
"types": ["node"]
}
},
"compilerOptions": {
"outDir": "./lib",
"incremental": true,
"sourceMap": true,
"noImplicitAny": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "ES6",
"target": "ES6",
"moduleResolution": "Bundler",
2024-06-08 23:52:26 +02:00
"lib": [
"ESNext",
"DOM"
],
"jsx": "react",
"allowJs": true
}
}