mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-01 22:32:26 +03:00
31 lines
727 B
JSON
31 lines
727 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": false,
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"experimentalDecorators": true,
|
|
"declaration": true,
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["next-env.d.ts", "src/**/*.ts", "pages/**/*.tsx"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"src/provider/affine/sync.js",
|
|
"src/**/*.spec.ts"
|
|
]
|
|
}
|