2
0
mirror of https://github.com/tenrok/vue-cron-editor-bootstrap.git synced 2026-05-30 15:34:05 +03:00
Files
vue-cron-editor-bootstrap/tsconfig.json
T
Alex Freitas cd320bb0ac Firts version
2020-05-21 15:42:12 -03:00

39 lines
660 B
JSON

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