jm-expense-vue-ts/tsconfig.json

25 lines
655 B
JSON
Raw Permalink Normal View History

2021-12-14 08:00:06 +00:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
2022-03-29 01:55:10 +00:00
"types": ["webpack-env", "vite/client"],
2021-12-14 08:00:06 +00:00
"paths": {
"@/*": ["src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
2022-03-29 01:55:10 +00:00
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
2021-12-14 08:00:06 +00:00
"exclude": ["node_modules"]
}