mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
27 lines
572 B
JSON
27 lines
572 B
JSON
{
|
|
"allowSyntheticDefaultImports": true,
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"jsx": "react",
|
|
"lib": [ "es2015", "DOM", "es6" ],
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": [ "src/*" ],
|
|
"custom_modules/*": [
|
|
"src/custom_modules/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/index.tsx",
|
|
"./backend/**/*",
|
|
"./custom.d.ts"
|
|
]
|
|
}
|