bolt/tsconfig.json
Sam Vervaeck 70b219d6df Update the parser and related files
- Extend the parser to support many more constructs
 - Add basic structure for parsing embedded JavaScript
 - Remove and update some AST definitions
 - Fix some bugs
2020-05-22 19:51:49 +02:00

12 lines
246 B
JSON

{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"outDir": "./lib",
"strict": true,
"esModuleInterop": true,
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
}
}