You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
792 B
35 lines
792 B
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": false,
|
|
"allowImportingTsExtensions": true,
|
|
"types": [
|
|
"vite/client",
|
|
"node",
|
|
"@types/w3c-web-serial",
|
|
"@types/web-bluetooth"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@app/*": ["./src/*"],
|
|
"@public/*": ["./public/*"],
|
|
"@pages/*": ["./src/pages/*"],
|
|
"@components/*": ["./src/components/*"],
|
|
"@core/*": ["./src/core/*"],
|
|
"@layouts/*": ["./src/layouts/*"]
|
|
}
|
|
},
|
|
"include": ["src", ".d.ts"],
|
|
"exclude": [
|
|
"routeTree.gen.ts",
|
|
"node_modules",
|
|
"dist",
|
|
"build",
|
|
"coverage",
|
|
"out",
|
|
".vscode-test"
|
|
]
|
|
}
|
|
|