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

28 lines
688 B
JSON
Raw Normal View History

2020-10-12 13:35:33 +09:00
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"$/*": ["./server/*"]
},
"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"]
}