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.
28 lines
648 B
28 lines
648 B
{ |
|
"compilerOptions": { |
|
"target": "ES2017", |
|
"module": "ESNext", |
|
"lib": ["ESNext", "DOM"], |
|
"jsx": "react-jsx", |
|
"useDefineForClassFields": true, |
|
"skipLibCheck": true, |
|
"esModuleInterop": true, |
|
"allowSyntheticDefaultImports": true, |
|
"strict": true, |
|
"forceConsistentCasingInFileNames": true, |
|
"moduleResolution": "node", |
|
"resolveJsonModule": true, |
|
"isolatedModules": true, |
|
"noEmit": true, |
|
"typeRoots": [ |
|
"node_modules/@types", |
|
"types" |
|
], |
|
"baseUrl": ".", |
|
"paths": { |
|
"@/*": ["src/*"] |
|
} |
|
}, |
|
"include": ["src", "types"], |
|
"exclude": ["node_modules", "dist"] |
|
}
|
|
|