2018-11-05 15:26:18 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"strict": true,
|
2018-12-18 14:43:23 +00:00
|
|
|
"noImplicitAny": false,
|
2018-11-05 15:26:18 +00:00
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
2019-07-18 14:39:39 +01:00
|
|
|
"strictPropertyInitialization": false,
|
2018-11-05 15:26:18 +00:00
|
|
|
"types": [
|
|
|
|
"webpack-env",
|
|
|
|
"jest"
|
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
|
|
|
"src/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"scripthost"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"tests/**/*.ts",
|
|
|
|
"tests/**/*.tsx"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2019-04-05 16:08:14 +01:00
|
|
|
"node_modules",
|
|
|
|
// TODO: temporary file
|
|
|
|
"src/components/project/DatePicker.vue"
|
2018-11-05 15:26:18 +00:00
|
|
|
]
|
|
|
|
}
|