bolt/@boltlang/compiler/tsconfig.json

17 lines
354 B
JSON
Raw Normal View History

2020-02-24 10:03:10 +01:00
{
"compilerOptions": {
"target": "ES2019",
2020-05-10 12:00:53 +02:00
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"outDir": "./",
2020-05-10 12:00:53 +02:00
"strict": true,
"esModuleInterop": true,
"sourceMap": true,
2020-05-10 12:00:53 +02:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true
2020-05-23 15:04:51 +02:00
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
2020-02-24 10:03:10 +01:00
}