computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
723 B
29 lines
723 B
{ |
|
"compilerOptions": { |
|
"composite": false, |
|
"declaration": true, |
|
"declarationMap": true, |
|
"esModuleInterop": true, |
|
"forceConsistentCasingInFileNames": true, |
|
"inlineSources": false, |
|
"isolatedModules": true, |
|
"moduleResolution": "node", |
|
"noUnusedLocals": false, |
|
"noUnusedParameters": false, |
|
"preserveWatchOutput": true, |
|
"skipLibCheck": true, |
|
"strict": true, |
|
"strictNullChecks": true, |
|
"noEmit": true, |
|
"jsx": "react-jsx", |
|
"lib": ["DOM", "DOM.Iterable", "ESNext"], |
|
"module": "ESNext", |
|
"target": "es6", |
|
"baseUrl": ".", |
|
"paths": { |
|
"~/*": ["src/*"] |
|
} |
|
}, |
|
"include": [".", "src/types"], |
|
"exclude": ["dist", "build", "node_modules"] |
|
}
|
|
|