12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "moduleResolution": "node",
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "allowSyntheticDefaultImports": true,
- "strictFunctionTypes": false,
- "jsx": "preserve",
- "baseUrl": ".",
- "allowJs": true,
- "sourceMap": true,
- "esModuleInterop": true,
- "resolveJsonModule": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "experimentalDecorators": true,
- "lib": ["dom", "esnext"],
- "types": ["vite/client", "jest"],
- "typeRoots": ["./node_modules/@types/", "./types"],
- "noImplicitAny": false,
- "skipLibCheck": true,
- "paths": {
- "/@/*": ["src/*"],
- "/#/*": ["types/*"],
- "@/*": ["src/*"],
- "#/*": ["types/*"]
- }
- },
- "vueCompilerOptions": {
- "experimentalDisableTemplateSupport": true
- },
- "include": [
- "tests/**/*.ts",
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "types/**/*.d.ts",
- "types/**/*.ts",
- "build/**/*.ts",
- "build/**/*.d.ts",
- "mock/**/*.ts",
- "vite.config.ts",
- "src/**/*.glsl"
- , "src/utils/threejs/loadModel.worker.js", "src/utils/threejs/loadModel.worker.js" ],
- "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
- }
|