mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 11:06:40 +07:00
initial ts configuration
This commit is contained in:
parent
d98a6d90b1
commit
4c6526efc9
5 changed files with 286 additions and 6 deletions
32
tsconfig.json
Normal file
32
tsconfig.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist/",
|
||||
"sourceMap": true,
|
||||
"noImplicitAny": false,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"module": "commonjs",
|
||||
"target": "es5",
|
||||
"jsx": "react",
|
||||
"lib": [ "es2015", "DOM" ],
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"$components/*": [ "src/components/*" ],
|
||||
"$containers/*": [ "src/containers/*" ],
|
||||
"$constants/*": [ "src/constants/*" ],
|
||||
"$sprites/*": [ "src/sprites/*" ],
|
||||
"$config/*": [ "./config/*" ],
|
||||
"$styles/*": [ "src/styles/*" ],
|
||||
"$redux/*": [ "src/redux/*" ],
|
||||
"$utils/*": [ "src/utils/*" ],
|
||||
"$modules/*": [ "src/modules/*" ],
|
||||
"custom_modules/*": [
|
||||
"src/custom_modules/*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"./src/**/*",
|
||||
"./backend/**/*",
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue