Files
container-toolkit-action/tsconfig.json
T

20 lines
503 B
JSON
Raw Normal View History

2019-08-02 09:09:37 -04:00
{
2023-09-15 12:31:10 -04:00
"$schema": "https://json.schemastore.org/tsconfig",
2019-08-02 09:09:37 -04:00
"compilerOptions": {
2023-09-15 12:31:10 -04:00
"target": "ES2022",
"module": "NodeNext",
"rootDir": "./src",
"moduleResolution": "NodeNext",
"baseUrl": "./",
"sourceMap": true,
"outDir": "./dist",
"noImplicitAny": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"newLine": "lf"
2019-08-02 09:09:37 -04:00
},
2023-09-15 12:31:10 -04:00
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage"]
2019-08-02 09:09:37 -04:00
}