mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-02 11:31:08 +03:00
26 lines
659 B
JSON
26 lines
659 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": false,
|
|
"esModuleInterop": true,
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"experimentalDecorators": true,
|
|
"declaration": true,
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["next-env.d.ts", "src/**/*.ts", "pages/**/*.tsx"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|