isoflow/tsconfig.json

27 lines
548 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-10-04 16:56:55 +00:00
"useUnknownInCatchVariables": false
2023-03-23 20:59:59 +00:00
},
"exclude": ["node_modules", "./dist", "./docs"],
"include": [
"**/*.ts",
"**/*.tsx",
"src/global.d.ts"
],
2023-03-08 20:29:13 +00:00
}