diretto/tsconfig.json

29 lines
617 B
JSON
Raw Permalink Normal View History

2019-06-26 20:45:22 +02:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": ["webpack-env"],
2019-06-26 20:45:22 +02:00
"paths": {
"@/*": ["src/*"]
2019-06-26 20:45:22 +02:00
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2019-06-26 20:45:22 +02:00
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": ["node_modules"]
2019-06-26 20:45:22 +02:00
}