37 lines
744 B
JSON
37 lines
744 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"importHelpers": true,
|
||
|
"jsx": "preserve",
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"declaration": true,
|
||
|
"suppressImplicitAnyIndexErrors": true,
|
||
|
"esModuleInterop": true,
|
||
|
"sourceMap": true,
|
||
|
"baseUrl": "./",
|
||
|
"strict": true,
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"]
|
||
|
},
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
||
|
},
|
||
|
"include": ["src/*.ts", "src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"lib",
|
||
|
"es",
|
||
|
"dist",
|
||
|
"docs-dist",
|
||
|
"typings",
|
||
|
"**/__test__",
|
||
|
"test",
|
||
|
"fixtures"
|
||
|
]
|
||
|
}
|