Files
payload/test/tsconfig.json
2024-03-19 00:59:56 -04:00

49 lines
1014 B
JSON

{
"compilerOptions": {
"noEmit": true,
"rootDir": "..", /* Specify the root folder within your source files. */
"declaration": true,
"declarationMap": true,
"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": [
"./**/*.ts",
"../packages/**/src/**/*.ts",
"../packages/**/src/**/*.tsx"
],
"references": [],
}