isoflow/tsconfig.json

15 lines
288 B
JSON
Raw Normal View History

2023-03-08 20:29:13 +00:00
{
"compilerOptions": {
2023-03-23 20:59:59 +00:00
"outDir": "./dist",
2023-03-16 21:27:09 +00:00
"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-23 20:59:59 +00:00
},
"files": ["./src/App.tsx"]
2023-03-08 20:29:13 +00:00
}