39 lines
808 B
JSON
39 lines
808 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"types": ["webpack-env", "jest"],
|
|
"typeRoots": ["./@types", "./node_modules/@types"],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"es2017.intl",
|
|
"dom.iterable",
|
|
"scripthost",
|
|
"webworker"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.tsx"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|