mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
28 lines
724 B
JSON
28 lines
724 B
JSON
{
|
|
"allowSyntheticDefaultImports": true,
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"jsx": "react",
|
|
"lib": [ "es2015", "DOM", "es6" ],
|
|
"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/*" ]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./custom.d.ts"
|
|
]
|
|
}
|