DocSpace-client/packages/doceditor/tsconfig.json

52 lines
873 B
JSON
Raw Normal View History

2024-01-09 07:32:57 +00:00
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"types": [
"./index.d.ts"
],
2024-01-09 07:32:57 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
2024-02-19 08:42:01 +00:00
"name": "next"
}
2024-01-09 07:32:57 +00:00
],
"paths": {
"@/*": [
"./src/*"
],
"PUBLIC_DIR/*": [
"../../public/*"
],
"ASSETS_DIR/*": [
"./public/*"
]
2024-02-19 08:42:01 +00:00
}
2024-01-09 07:32:57 +00:00
},
2024-02-02 15:41:50 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"next.config.js",
"./.next/types/**/*.ts"
2024-02-02 15:41:50 +00:00
],
"exclude": [
"node_modules"
]
2024-01-09 07:32:57 +00:00
}