mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 18:19:35 +01:00
20 lines
505 B
JSON
20 lines
505 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "es2015",
|
|
"target": "esnext",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"outDir": "dist/esnext",
|
|
"strictNullChecks": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|