isoflow/tsconfig.json

26 lines
506 B
JSON
Raw Normal View History

2023-03-08 20:29:13 +00:00
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"src/*": ["./*"],
},
2023-03-23 20:59:59 +00:00
"outDir": "./dist",
2023-03-16 21:27:09 +00:00
"noImplicitAny": true,
"target": "es6",
2023-08-11 10:09:10 +00:00
"jsx": "react-jsx",
2023-03-08 20:29:13 +00:00
"allowJs": true,
2023-03-16 21:27:09 +00:00
"allowSyntheticDefaultImports": true,
"declaration": true,
"strict": true,
"module": "es6",
"moduleResolution": "node",
"skipLibCheck": true,
2023-03-23 20:59:59 +00:00
},
// "exclude": ["src/interaction/reducers/*"],
"include": [
"**/*.ts",
"**/*.tsx",
"src/global.d.ts"
],
2023-03-08 20:29:13 +00:00
}