mirror of
https://github.com/novuhq/novu.git
synced 2026-03-13 10:41:26 +08:00
18 lines
462 B
JSON
18 lines
462 B
JSON
{
|
|
"include": ["src"],
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"target": "ES6",
|
|
"esModuleInterop": true,
|
|
"module": "NodeNext",
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "NodeNext",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true
|
|
},
|
|
"exclude": ["src/**/*.test.*", "src/*.test.*", "node_modules", "**/node_modules/*"]
|
|
}
|