mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
7add582eb7
Add GitHub workflow for running dangerjs on pull requests. Add GitHub layout for DangerJS.
18 lines
387 B
JSON
18 lines
387 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": [
|
|
"./*.ts"
|
|
]
|
|
}
|