mirror of
https://github.com/markmanx/isoflow.git
synced 2025-02-08 12:27:53 +00:00
24 lines
457 B
JSON
24 lines
457 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
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"src/global.d.ts"
|
|
],
|
|
}
|