mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
34 lines
852 B
JSON
34 lines
852 B
JSON
// {
|
|
// "compilerOptions": {
|
|
// "baseUrl": ".",
|
|
// "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,
|
|
// "jsx": "preserve",
|
|
// "paths": {
|
|
// "@styles/*": ["styles/*"],
|
|
// },
|
|
// "incremental": true
|
|
// },
|
|
// "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
// "exclude": ["node_modules"]
|
|
// }
|
|
{
|
|
"extends": "tsconfig/nextjs.json",
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "preserve"
|
|
}
|
|
}
|