DocSpace-client/packages/login/tsconfig.json

41 lines
866 B
JSON
Raw Normal View History

2024-03-25 09:20:44 +00:00
{
"compilerOptions": {
"target": "es5",
2024-04-01 06:56:54 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
"types": ["./index.d.ts"],
2024-03-25 09:20:44 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
2024-04-01 06:56:54 +00:00
"module": "ESNext",
"moduleResolution": "node",
"rootDir": "./",
"baseUrl": "./",
2024-03-25 09:20:44 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
2024-04-01 06:56:54 +00:00
"@/*": ["./src/*"],
2024-04-24 10:49:33 +00:00
"PUBLIC_DIR/*": ["../../public/*"],
"ASSETS_DIR/*": ["./public/*"]
},
"forceConsistentCasingInFileNames": true
2024-03-25 09:20:44 +00:00
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"next.config.js",
"./.next/types/**/*.ts"
],
2024-04-01 06:56:54 +00:00
"exclude": ["node_modules"]
2024-03-25 09:20:44 +00:00
}