cut-demo/tsconfig.json

28 lines
599 B
JSON
Raw Normal View History

2020-04-27 09:54:07 +08:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
2020-04-27 16:39:48 +08:00
// "strict": true,
2020-04-27 09:54:07 +08:00
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
2020-04-27 16:39:48 +08:00
"types": ["node","webpack-env", "jest"],
2020-04-27 09:54:07 +08:00
"paths": {
2020-04-27 16:39:48 +08:00
"@/*": ["src/*"]
2020-04-27 09:54:07 +08:00
},
2020-04-27 16:39:48 +08:00
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2020-04-27 09:54:07 +08:00
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
2020-04-27 16:39:48 +08:00
"exclude": ["node_modules"]
2020-04-27 09:54:07 +08:00
}