tsconfig.json•530 B
{
"compilerOptions": {
"target": "esnext",
"lib": ["esnext"],
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"noEmit": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["worker-configuration.d.ts", "src/**/*.ts", "deploy/**/*.ts"]
}