This commit is contained in:
2023-04-19 13:33:07 +00:00
parent b76d5599d8
commit af432a7bfb
89 changed files with 5801 additions and 3322 deletions

View File

@@ -1,35 +1,24 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true
},
"exclude": [
"node_modules"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"ts-node": {
"compilerOptions": {
"module": "commonjs"
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@test-utils": ["./test-utils"],
"@/*": ["./src/*"]
}
}
}
},
"references": [{ "path": "./tsconfig.node.json" }]
}