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

29 lines
638 B
JSON
Raw Permalink Normal View History

2020-10-27 09:41:16 +01:00
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2022-09-21 17:36:45 +02:00
"lib": ["dom", "dom.iterable", "es2019"],
"module": "ES2020",
2020-10-27 09:41:16 +01:00
"moduleResolution": "node",
"sourceMap": true,
2022-11-29 18:07:05 +01:00
"target": "ES2015",
"jsx": "react-jsx",
2020-10-27 09:41:16 +01:00
"noEmit": true,
2021-04-02 16:02:50 +02:00
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
2022-11-29 11:19:07 +01:00
"rootDir": "app/frontend/src/javascript"
2020-10-27 09:41:16 +01:00
},
"exclude": [
"**/*.spec.ts",
"node_modules",
"vendor",
2022-11-29 11:19:07 +01:00
"public",
"test/frontend/**/*"
],
"include": [
"app/frontend/src/javascript/**/*"
2020-10-27 09:41:16 +01:00
],
"compileOnSave": false
}