44 lines
800 B
JSON
44 lines
800 B
JSON
{
|
|
"lib": [
|
|
"dom",
|
|
"es5",
|
|
"es2015",
|
|
"es2020",
|
|
"es2015.promise"
|
|
],
|
|
"module": "esnext",
|
|
/* Bundler mode */
|
|
/* Linting */
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"experimentalDecorators": true,
|
|
"target": "ES2020",
|
|
"moduleResolution": "Node",
|
|
"module": "ESNext",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@": [
|
|
"src"
|
|
],
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"preview/**/*.view",
|
|
"preview/**/*.ts",
|
|
"preview/**/*.tsx"
|
|
]
|
|
}
|