1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/tsconfig.json
2022-12-21 14:14:26 +01:00

29 lines
638 B
JSON

{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["dom", "dom.iterable", "es2019"],
"module": "ES2020",
"moduleResolution": "node",
"sourceMap": true,
"target": "ES2015",
"jsx": "react-jsx",
"noEmit": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"rootDir": "app/frontend/src/javascript"
},
"exclude": [
"**/*.spec.ts",
"node_modules",
"vendor",
"public",
"test/frontend/**/*"
],
"include": [
"app/frontend/src/javascript/**/*"
],
"compileOnSave": false
}