Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/tsconfig.json

24 lines
629 B
JSON
Raw Normal View History

2020-02-04 20:27:46 +01:00
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./out",
"declaration": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
2020-08-04 22:05:13 +02:00
"tsBuildInfoFile": "./.cache/tsbuildinfo",
2020-02-04 20:27:46 +01:00
"incremental": true,
"rootDir": "./src",
"typeRoots": ["./node_modules/@types", "./typings"],
"downlevelIteration": true
2020-02-04 20:27:46 +01:00
},
2020-08-04 22:05:13 +02:00
"include": ["./src/**/*.ts"]
2020-02-04 20:27:46 +01:00
}