* api-ref: added syncing between code tabs * updated comment * resolve metadata warning * fix colors
50 lines
899 B
JSON
50 lines
899 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "..",
|
|
"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",
|
|
"incremental": true,
|
|
"downlevelIteration": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"typeRoots": ["./node_modules/@types", "./types"]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.tsx",
|
|
"**/*.ts",
|
|
"**/*.js",
|
|
".next/types/**/*.ts",
|
|
"**/*.mjs"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"public",
|
|
"specs",
|
|
"../../node_modules"
|
|
]
|
|
}
|