Files
afilmory/packages/builder/tsconfig.json

41 lines
806 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"skipDefaultLibCheck": true,
"noImplicitAny": false,
"noEmit": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"paths": {
"@afilmory/builder/*": [
"./src/*"
],
"@pkg": [
"./package.json"
],
"@env": [
"../../env.ts"
],
}
},
"include": [
"./src/**/*",
"./scripts/**/*"
]
}