32 строки
687 B
JSON
32 строки
687 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "out",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"sourceMap": true,
|
|
"rootDir": ".",
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedParameters": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/vscode/*",
|
|
"*"
|
|
]
|
|
},
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test",
|
|
"gulpfile.ts"
|
|
]
|
|
}
|
|
|