1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00
vault-frontend/tsconfig.json
2020-11-16 15:29:41 +07:00

24 lines
605 B
JSON

{
"allowSyntheticDefaultImports": true,
"compilerOptions": {
"incremental": true,
"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/**/*.ts", "./src/**/*.tsx", "./custom.d.ts"],
"exclude": ["./__tests__/**/*"]
}