Table/tsconfig.json

38 lines
777 B
JSON
Raw Permalink Normal View History

2018-08-03 15:59:37 +08:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
2018-08-14 11:38:41 +08:00
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2018-08-03 15:59:37 +08:00
"sourceMap": true,
"baseUrl": ".",
2018-08-21 14:25:58 +08:00
"types": ["node", "jest"],
2018-08-03 15:59:37 +08:00
"paths": {
2018-08-21 14:25:58 +08:00
"@/*": ["src/*"]
2018-08-03 15:59:37 +08:00
},
2018-08-23 11:31:02 +08:00
<<<<<<< HEAD
2018-08-03 15:59:37 +08:00
"lib": [
2018-08-14 11:38:41 +08:00
"esnext",
2018-08-03 15:59:37 +08:00
"dom",
"dom.iterable",
"scripthost"
]
2018-08-23 11:31:02 +08:00
=======
2018-08-21 14:25:58 +08:00
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2018-08-23 11:31:02 +08:00
>>>>>>> 4bbd0e33b7efd26db4e8ea98b8b8c281f9f1f6f6
2018-08-03 15:59:37 +08:00
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
2018-08-21 14:25:58 +08:00
"exclude": ["node_modules"]
2018-08-03 15:59:37 +08:00
}