-
Matthias Konitzny authored
Renamed the overlays directory to components. Typescript now compiles to es6 instead of es5 (es6 content gets translated by babel)
Matthias Konitzny authoredRenamed the overlays directory to components. Typescript now compiles to es6 instead of es5 (es6 content gets translated by babel)
tsconfig.json 296 B
{
"compilerOptions": {
"outDir": "./build/",
"noImplicitAny": true,
"strictNullChecks": false,
"module": "es6",
"target": "es6",
"jsx": "preserve",
"allowJs": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"sourceMap": true
}
}