Reference implementation for the Phoenix Architecture. Work in progress.
aicoding.leaflet.pub/
ai
coding
crazy
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "moduleResolution": "bundler",
6 "declaration": true,
7 "outDir": "dist",
8 "rootDir": "src",
9 "strict": true,
10 "esModuleInterop": true,
11 "skipLibCheck": true,
12 "forceConsistentCasingInFileNames": true,
13 "resolveJsonModule": true,
14 "sourceMap": true
15 },
16 "include": [
17 "src/**/*"
18 ],
19 "exclude": [
20 "node_modules",
21 "dist"
22 ]
23}