mirror of
https://github.com/iv-org/close-potential-duplicates.git
synced 2024-11-26 23:50:43 +00:00
19 lines
424 B
JSON
19 lines
424 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"noEmitOnError": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"outDir": "lib",
|
|
"target": "es5",
|
|
"lib": ["dom", "es2015"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|