diff --git a/tsconfig.json b/tsconfig.json index 3cd2533..d99dbcf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,21 +1,21 @@ { "compilerOptions": { "target": "ES2020", - "module": "none", + "module": "ES2020", "lib": ["ES2020", "DOM"], "outDir": "./web/static", "rootDir": "./web/src", - "strict": true, - "esModuleInterop": true, + "moduleResolution": "bundler", "skipLibCheck": true, + "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "declaration": false, - "sourceMap": false, + "sourceMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, }, "include": ["web/src/**/*.ts"], - "exclude": ["node_modules"] + "exclude": ["node_modules"], }