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

24 lines
522 B
JSON
Raw Normal View History

2020-10-27 09:41:16 +01:00
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2021-04-02 16:02:50 +02:00
"lib": ["es6", "dom", "es2015.collection", "es2015.iterable"],
"module": "ES2020",
2020-10-27 09:41:16 +01:00
"moduleResolution": "node",
"sourceMap": true,
"target": "es5",
"jsx": "react",
"noEmit": true,
2021-04-02 16:02:50 +02:00
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
2020-10-27 09:41:16 +01:00
},
"exclude": [
"**/*.spec.ts",
"node_modules",
"vendor",
"public"
],
"compileOnSave": false
}