1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/frourio/tsconfig.json

29 lines
744 B
JSON
Raw Permalink Normal View History

2020-10-12 13:35:33 +09:00
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
2020-11-19 16:16:33 +09:00
"$/*": ["./server/*"],
"$prisma/*": ["./server/node_modules/.prisma/*"]
2020-10-12 13:35:33 +09:00
},
"allowJs": true,
"skipLibCheck": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"strict": false
},
"exclude": ["node_modules", "server"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}