hrms-checkin/tsconfig.json

31 lines
699 B
JSON
Raw Normal View History

2023-10-31 10:04:06 +07:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"sourceMap": true,
"baseUrl": ".",
2023-11-01 11:03:56 +07:00
"types": ["webpack-env"],
2023-10-31 10:04:06 +07:00
"paths": {
2023-11-01 11:03:56 +07:00
"@/*": ["src/*"]
2023-10-31 10:04:06 +07:00
},
2023-11-01 11:03:56 +07:00
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2023-10-31 10:04:06 +07:00
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
2023-11-01 11:03:56 +07:00
"exclude": ["node_modules"]
2023-10-31 10:04:06 +07:00
}