mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
17 lines
345 B
JSON
17 lines
345 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2016",
|
||
|
"lib": ["es6"],
|
||
|
"module": "commonjs",
|
||
|
"rootDir": "src",
|
||
|
"resolveJsonModule": true,
|
||
|
"allowJs": true,
|
||
|
"outDir": "build",
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"strict": true,
|
||
|
"noImplicitAny": true,
|
||
|
"skipLibCheck": true
|
||
|
}
|
||
|
}
|