blessing-skin-server/resources/assets/tests/tsconfig.json
2024-02-23 16:58:50 +08:00

19 lines
439 B
JSON

{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"baseUrl": "..",
"noEmit": true,
"paths": {
"@/scripts/*": ["./tests/ts-shims/*", "./src/scripts/*"],
"@/components/*": ["./src/components/*"],
"@/views/*": ["./src/views/*"],
"@/*": ["./src/*"]
}
},
"include": ["."]
}