20 lines
495 B
JSON
20 lines
495 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "react-jsx",
|
|
"module": "commonjs",
|
|
"rootDir": ".",
|
|
"moduleResolution": "node",
|
|
"allowJs": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node", "mocha"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
}
|
|
}
|