diff --git a/tsconfig.json b/tsconfig.json index c9b43ad..70ce3a1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,21 +1,27 @@ { "compilerOptions": { - "target": "ES2020", - "module": "NodeNext", - "moduleResolution": "NodeNext", - "strict": true, "declaration": true, - "sourceMap": true, "declarationMap": true, + "esModuleInterop": true, + "module": "nodenext", + "moduleResolution": "nodenext", + "noErrorTruncation": true, + "noFallthroughCasesInSwitch": true, "noImplicitOverride": true, - "strictNullChecks": false, - "stripInternal": true, + "noImplicitReturns": true, "outDir": "dist/src", - "esModuleInterop": true, - "noImplicitAny": false, + "paths": { + "@three.ez/instanced-mesh": [ + "./src/index.js" + ] + }, "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "stripInternal": true, + "target": "ES2020", "types": [ "vite-plugin-glsl/ext" ] } -} \ No newline at end of file +}