mirror of
https://github.com/markmanx/isoflow.git
synced 2025-02-08 04:18:29 +00:00
22 lines
384 B
JSON
22 lines
384 B
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"src/*": [
|
|
"./src/*"
|
|
],
|
|
},
|
|
"outDir": "./dist",
|
|
"noImplicitAny": true,
|
|
"module": "es6",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
}
|