cairo/tsconfig.server.json
Dunemask 0fc5f05b6a
Some checks failed
Deploy Edge / deploy-edge (push) Failing after 2s
S3 Repo Backup / s3-repo-backup (push) Failing after 2s
[INIT] Initial Project Structure
2024-08-24 12:41:04 -06:00

19 lines
491 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"allowJs": true,
"esModuleInterop": true,
"allowImportingTsExtensions": false,
"isolatedModules": true,
"noEmit": false,
"resolveJsonModule": true,
"outDir": "./build/server",
"strict": true,
"strictPropertyInitialization": false
},
"include": ["./lib", "./lib/**/*.ts"],
"exclude": ["src", "node_modules"]
}