isoflow/tsconfig.json

14 lines
259 B
JSON
Raw Normal View History

2023-03-08 20:29:13 +00:00
{
"compilerOptions": {
2023-03-16 21:27:09 +00:00
"outDir": "./dist/",
"noImplicitAny": true,
"module": "es6",
2023-03-08 20:29:13 +00:00
"target": "es5",
2023-03-16 21:27:09 +00:00
"jsx": "react",
2023-03-08 20:29:13 +00:00
"allowJs": true,
"moduleResolution": "node",
2023-03-16 21:27:09 +00:00
"allowSyntheticDefaultImports": true,
"strict": true
}
2023-03-08 20:29:13 +00:00
}