next-app/tsconfig.json

26 lines
617 B
JSON
Raw Permalink Normal View History

2023-02-17 17:00:32 +08:00
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2023-02-20 15:12:55 +08:00
"jsx": "preserve",
2023-02-18 16:02:51 +08:00
"jsxImportSource": "@emotion/react",
2023-02-17 17:00:32 +08:00
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}