42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
// Ideally, this should be "." once we get rid of all relative package paths
|
|
"rootDir": "..",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./just-in-case",
|
|
"target": "esnext",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": false,
|
|
"types": ["jest", "node", "@types/jest"],
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {}
|
|
},
|
|
"exclude": ["dist", "build", "node_modules", ".eslintrc.js", "dist/**/*.js", "**/dist/**/*.js"],
|
|
"include": [
|
|
// "./test/_community/**/*.ts"
|
|
"./**/*.ts"
|
|
// "/**/*.ts",
|
|
// "../packages/**/src/**/*.ts",
|
|
// "../packages/**/src/**/*.tsx"
|
|
],
|
|
"references": []
|
|
}
|