diff --git a/api/tsconfig.json b/api/tsconfig.json new file mode 100644 index 00000000..8d2fb1c7 --- /dev/null +++ b/api/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "ES2020", + "lib": ["ES2020"], + "moduleResolution": "node", + "strict": false, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "outDir": "./", + "rootDir": "./", + "baseUrl": ".", + "paths": { + "@/*": ["../client/*"], + "@shared/*": ["../shared/*"], + "@/server/*": ["../server/*"] + } + }, + "include": ["./**/*.ts"], + "exclude": ["node_modules", "**/*.d.ts"] +}