UNPKG

vite-esbuild-typescript-checker

Version:
32 lines (31 loc) 857 B
{ "compileOnSave": false, "exclude": [ "node_modules" ], "include": [ "src/entry1/**/*.ts", "src/entry2/**/*.ts", ], "compilerOptions": { "typeRoots": ["node_modules/@types"], "noImplicitAny": true, "skipLibCheck": true, "esModuleInterop": true, "sourceMap": false, "removeComments": true, "noUnusedLocals": false, "noUnusedParameters": false, "noImplicitReturns": true, "moduleResolution": "node", "resolveJsonModule": true, "allowJs": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "module": "ESNext", "target": "ESNext", "rootDir": ".", "allowSyntheticDefaultImports": true, "composite": true } }