mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-24 10:01:48 -04:00
25 lines
521 B
JSON
25 lines
521 B
JSON
{
|
|
"compilerOptions": {
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictNullChecks": true,
|
|
"target": "es6",
|
|
"outDir": "lib",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"typings/**/*.d.ts"
|
|
],
|
|
"atom": {
|
|
"rewriteTsconfig": true
|
|
}
|
|
}
|