SurfSense/extension/tsconfig.json

16 lines
366 B
JSON
Raw Normal View History

2024-08-12 00:32:42 -07:00
{
"compilerOptions": {
"strict": true,
"target": "es6",
"moduleResolution": "bundler",
"module": "ES6",
"esModuleInterop": true,
"sourceMap": false,
"rootDir": "src",
"outDir": "dist/js",
"noEmitOnError": true,
"jsx": "react",
"typeRoots": [ "node_modules/@types" ]
}
}