Files
react-test/test/moduleResolution/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
383 B
JSON
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
{
"compilerOptions": {
// rely on workspace linking
"paths": {},
"target": "es5",
"lib": ["es6", "dom"],
"jsx": "react",
"module": "nodenext",
"moduleResolution": "nodenext",
"strict": true,
"noEmit": true,
"noErrorTruncation": true,
"rootDir": "./src",
"skipLibCheck": true,
"types": []
},
"exclude": ["**/node_modules/"]
}