mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-06-19 18:46:33 +00:00
32 lines
642 B
JSON
32 lines
642 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"noEmitOnError": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitOverride": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"downlevelIteration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"target": "ES2017",
|
|
"outDir": "lib",
|
|
"lib": [
|
|
"ES2017",
|
|
"dom"
|
|
],
|
|
"jsx": "react",
|
|
"sourceMap": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"files": [
|
|
"../node_modules/nsfw/index.d.ts"
|
|
]
|
|
}
|