timetable-generator/tsconfig.json

18 lines
366 B
JSON

{
"compilerOptions": {
"outDir": "./build/",
"sourceMap": true,
"strict": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"module": "es6",
"moduleResolution": "node",
"target": "es5",
"lib": ["ES2020"],
"allowJs": true,
"jsx": "react",
"allowSyntheticDefaultImports": true
},
"include": ["./src/**/*"]
}