thedesk/tsconfig.json
kPherox 1417fb228c
Remove babel/core-js
どうしても必要になった時は使えばいいと思うけど、変化しないブラウザのバージョンでの使い道がわからない
2019-04-27 03:14:12 +09:00

45 lines
794 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"lodash",
"webpack-env",
],
"paths": {
"*": [
"types/*"
],
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"types/**/*.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx",
],
"exclude": [
"node_modules"
]
}