mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
28 lines
581 B
JSON
28 lines
581 B
JSON
{
|
|
"allowSyntheticDefaultImports": true,
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"removeComments": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"target": "es2018",
|
|
"isolatedModules": true,
|
|
"jsx": "react",
|
|
"lib": [ "es2015", "DOM", "es6" ],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./custom.d.ts"
|
|
],
|
|
"exclude": [
|
|
"./__tests__/**/*"
|
|
]
|
|
}
|