PicList/tsconfig.json

59 lines
1.0 KiB
JSON
Raw Normal View History

2019-12-19 06:17:21 -05:00
{
"compilerOptions": {
2020-01-07 21:57:19 -05:00
"target": "es2020",
2019-12-19 06:17:21 -05:00
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env"
],
"typeRoots": [
"./src/universal/types/*",
],
"paths": {
"@/*": [
"src/renderer/*"
],
"~/*": [
"src/*"
],
"root/*": [
"./*"
],
"#/*": [
"src/universal/*"
],
"apis/*": [
"src/main/apis/*"
],
"@core/*": [
"src/main/apis/core/*"
2019-12-19 06:17:21 -05:00
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}