pkgs/types/tsconfig.json (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"declaration": true,
"outDir": "./dist",
"allowImportingTsExtensions": true,
"emitDeclarationOnly": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "src/generator/**/*"]
}
|