Archived
2
0
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
neko-custom/client/tsconfig.json

44 lines
743 B
JSON
Raw Normal View History

2020-01-13 21:05:38 +13:00
{
"compilerOptions": {
2020-01-21 03:36:18 +13:00
"target": "esnext",
2020-01-13 21:05:38 +13:00
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
2020-01-23 06:16:40 +13:00
"skipLibCheck": true,
2020-01-13 21:05:38 +13:00
"baseUrl": ".",
"types": [
2020-02-02 09:35:48 +13:00
"node",
2020-01-24 04:23:26 +13:00
"webpack-env"
2020-01-13 21:05:38 +13:00
],
"paths": {
2020-01-21 03:36:18 +13:00
"~/*": [
"src/*"
],
2020-01-13 21:05:38 +13:00
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
2020-01-23 06:16:40 +13:00
],
2020-01-13 21:05:38 +13:00
},
"include": [
2020-02-02 09:35:48 +13:00
"tools/**/*.ts",
2020-01-13 21:05:38 +13:00
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
],
"exclude": [
"node_modules"
]
}