mirror of
https://github.com/igorski/bitmappery.git
synced 2026-06-17 03:34:56 +02:00
22 lines
503 B
JSON
22 lines
503 B
JSON
{
|
|
"include": [ "env.d.ts", "src/**/*", "src/**/*.vue" ],
|
|
"exclude": [],
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"paths": {
|
|
"@/*": [ "./src/*", "./tests/*" ]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"**/node_modules"
|
|
]
|
|
}
|