haifa-reminder/tsconfig.json

15 lines
266 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "CommonJS",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "ES2019",
"moduleResolution": "node",
2023-03-30 10:22:24 +00:00
"outDir": "./dist",
"rootDir": "./src"
2023-04-03 16:52:41 +00:00
},
"include": [
"src/**/*"
]
}