1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-17 04:30:31 +09:00
namae/tsconfig.json

21 lines
509 B
JSON
Raw Normal View History

2019-09-01 01:28:24 +09:00
{
"compilerOptions": {
2022-06-07 13:30:48 +09:00
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
2021-04-22 16:41:01 +09:00
"allowJs": true,
2022-06-07 13:30:48 +09:00
"skipLibCheck": true,
2019-09-01 01:28:24 +09:00
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
2022-06-07 13:30:48 +09:00
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true
2019-09-01 01:28:24 +09:00
},
2022-06-07 13:30:48 +09:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
2019-09-01 01:28:24 +09:00
}