mirror of
https://github.com/markmanx/isoflow.git
synced 2025-01-31 15:12:31 +00:00
26 lines
548 B
JSON
26 lines
548 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"src/*": ["./*"]
|
|
},
|
|
"outDir": "./dist",
|
|
"noImplicitAny": true,
|
|
"target": "es6",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"module": "es6",
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"exclude": ["node_modules", "./dist", "./docs"],
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"src/global.d.ts"
|
|
],
|
|
}
|