flashlang/tsconfig.json

13 lines
204 B
JSON
Raw Normal View History

2020-07-19 22:40:30 +02:00
{
2020-07-19 23:02:47 +02:00
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
2020-07-23 16:48:51 +02:00
"module": "CommonJS",
"target": "es6",
2020-07-19 23:02:47 +02:00
"jsx": "react",
"allowJs": true,
2020-07-31 00:29:40 +02:00
"sourceMap": true,
"esModuleInterop": true
2020-07-19 23:02:47 +02:00
}
}