mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
23 lines
564 B
JSON
23 lines
564 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/index.tsx", "./custom.d.ts"],
|
|
"exclude": ["./__tests__/**/*"]
|
|
}
|